os.File.wrapErr (method)

14 uses

	os (current package)
		file.go#L125: 	return n, f.wrapErr("read", e)
		file.go#L144: 			err = f.wrapErr("read", e)
		file.go#L163: 	return n, f.wrapErr("write", e)
		file.go#L206: 		err = f.wrapErr("write", e)
		file.go#L234: 			err = f.wrapErr("write", e)
		file.go#L251: 		return n, f.wrapErr("read", e)
		file.go#L292: 		return 0, f.wrapErr("seek", e)
		file.go#L439: func (f *File) wrapErr(op string, err error) error {
		file_posix.go#L93: 		return f.wrapErr("chmod", e)
		file_posix.go#L141: 		return f.wrapErr("chown", e)
		file_posix.go#L154: 		return f.wrapErr("truncate", e)
		file_posix.go#L167: 		return f.wrapErr("sync", e)
		file_posix.go#L204: 		return f.wrapErr("chdir", e)
		stat_unix.go#L22: 		return nil, f.wrapErr("stat", err)